home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / text / manipulation / heddley.lha / Heddley / Install-Heddley < prev    next >
Encoding:
Text File  |  1994-07-03  |  1.1 KB  |  59 lines

  1. ; Heddley installation file
  2. ; version 1.05
  3. ; by and (C) Edd Dumbill
  4. ; 3/7/94
  5.  
  6. (set hdestdir
  7.     (askdir
  8.         (prompt "Give Heddley a home...")
  9.         (help @askdir-help)
  10.         (default "SYS:Tools")
  11.     )
  12. )
  13. (complete 30)
  14. (copyfiles 
  15.     (prompt "Copying Heddley...")
  16.     (source "Heddley")
  17.     (dest hdestdir)
  18.     (infos)
  19. )
  20. (set ddestdir
  21.     (askdir
  22.         (prompt "Choose where to put the documentation")
  23.         (help @askdir-help)
  24.         (default "SYS:Man")
  25.         (newpath)
  26.     )
  27. )
  28. (copyfiles 
  29.     (prompt "Copying documentation...")
  30.     (source "Heddley.guide")
  31.     (dest ddestdir)
  32.     (infos)
  33. )
  34. (complete 50)
  35. (set rdestdir
  36.     (askdir
  37.         (prompt "Choose where to put the ARexx scripts")
  38.         (help @askdir-help)
  39.         (default "REXX:")
  40.         (newpath)
  41.     )
  42. )
  43. (copyfiles
  44.     (prompt "Copying ARexx scripts...")
  45.     (pattern "#?.rexx")
  46.     (source "")
  47.     (dest rdestdir)
  48. )
  49. (set @default-dest hdestdir)
  50. (complete 100)
  51. (exit
  52.     ("ARexx support scripts can be found in the ")
  53.     (rdestdir)
  54.     (" drawer (or partition). ")
  55.     ("Documentation can be found in the ")
  56.     (ddestdir)
  57.     (" drawer (or partition). Enjoy using Heddley!")
  58. )
  59.